home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / PRINTING / PRTFIL10 / EPSON.FMP next >
Text File  |  1994-06-01  |  708b  |  44 lines

  1. ;
  2. ; Epson (and alike) printer definition - Not Tested
  3. ;
  4.  
  5. ;
  6. ; Printer port
  7. ; Change to file name for printing to file
  8. ;
  9. [Printer]
  10. Port=LPT1
  11.  
  12. ; Paper Size & margins
  13. ;
  14. [PrintSize]
  15. PageLength=64
  16. PageWidth=94
  17. MarginLeft=4
  18. MarginRight=1
  19. MarginTop=1
  20. MarginBottom=1
  21.  
  22. ;
  23. ; Printer control codes
  24. ;
  25. ; Separate the strings with comma's. Insert an Escape using the ESC mnemonic.
  26. ; Character values can be given directly using #xx for decimal or $xx for hex.
  27. ;
  28. ; Example:
  29. ;
  30. ; EscF will become : ESC,"F"
  31. ; Esc(sS will become : ESC,"(sS"
  32. ;
  33. [PrintCode]
  34. Normal=ESC,"F",ESC,"5"
  35. Italic=ESC,"F",ESC,"4"
  36. Bold=ESC,"5",ESC,"E"
  37. BoldItalic=ESC,"E",ESC,"4"
  38. FF=#12
  39. LF=#10
  40. CR=#13
  41. Init=
  42. Done=
  43.